home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_10_10
/
1010020a
< prev
next >
Wrap
Text File
|
1992-08-11
|
306b
|
17 lines
Listing 8 -- the file memset.c
/* memset function */
#include <string.h>
void *(memset)(void *s, int c, size_t n)
{ /* store c throughout unsigned char s[n] */
const unsigned char uc = c;
unsigned char *su = (unsigned char *)s;
for (; 0 < n; ++su, --n)
*su = uc;
return (s);
}